home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / cpphtp2 / code.jar / code / ch03 / fig03_21.txt < prev    next >
Text File  |  1998-02-27  |  328b  |  15 lines

  1. 1   // References must be initialized
  2. 2   #include <iostream.h>
  3. 3   
  4. 4   int main()
  5. 5   {
  6. 6      int x = 3, &y = x;  // y is now an alias for x
  7. 7   
  8. 8      cout << "x = " << x << endl << "y = " << y << endl;
  9. 9      y = 7;
  10. 10     cout << "x = " << x << endl << "y = " << y << endl;
  11. 11  
  12. 12     return 0;
  13. 13  }
  14. 14  
  15.